{% extends 'base.html' %} {% block body %} {% for message in messages %} {% endfor %}

Booking History

Book Again
{% for b in booking %} {% empty %} {% endfor %}
Name of Booking Start Date & Time End Date & Time Total Amount (₹)
{{ b.name }} {{ b.start_time }} {{ b.end_time }} ₹{{ b.total }}
You haven’t made any bookings yet.
{% endblock body %}